home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / cuj1008.zip / BEARD.LIS < prev    next >
File List  |  1992-04-08  |  492b  |  33 lines

  1. static void PrintFloat(....
  2. :
  3. :
  4. unsigned long Int;
  5. int OutCntSav = *OutCnt;    /*  <-- insert this */
  6. int WidthSav = Width;        /*  <-- insert this */
  7. :
  8. :
  9. :
  10.  Print(BufferE,Prefix,3,-1,MaskZeros,OutCnt);    /* ~line 460 */
  11. }
  12.  
  13. /*
  14.     Need to pad left-justified fields will spaces.
  15. */
  16. if ((Flags & MaskJustify) == MaskJustify) {
  17.  
  18.     int n = WidthSav - (IoutCnt - OutCntSav);
  19.  
  20.     while (n--) {
  21.         dputc(' ');
  22.         ++*OutCnt;
  23.     }
  24. }
  25. free(BufferI);
  26. free(BufferF);
  27. free(BufferE);
  28. }
  29. :
  30. :
  31. :
  32.  
  33.